home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / CDictionary 1.0 / CPascalString.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-30  |  342 b   |  18 lines  |  [TEXT/KAHL]

  1. /*
  2.     useless class created soley for testing CDictionary
  3. */
  4. #define _H_CPascalString
  5.  
  6. /* simple object for testing dictionary. Just holds a pascal string */
  7.  
  8. #include "CObject.h"
  9. #include "defs.h"
  10.  
  11. struct CPascalString : CObject
  12. {
  13.     Str255    itsString;
  14.     
  15.     virtual void SetString( StringPtr string);
  16.     virtual void GetString( StringPtr string);
  17.  
  18. };